home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / info-service / gopher / Unix / gateways / techinfo / gophtech / cleanuplog < prev    next >
Encoding:
Text File  |  1993-03-01  |  355 b   |  22 lines

  1. #!/bin/csh -fv
  2.  
  3. set mail = /usr/ucb/mail
  4. set debuglog = "$1"
  5. #set whocares = murphy@dccs
  6. #
  7.  
  8. if ("$debuglog" == "") then
  9.     echo "Usage: $0 <logfilename>"
  10.     exit -1
  11. endif
  12.  
  13. grep -s :FatalError "$debuglog"
  14. if ("$status" == 0) then
  15.     $mail -s "Gopher TechInfo Gateway Log" $whocares < $debuglog
  16. endif
  17.  
  18. rm -f $debuglog
  19. touch $debuglog
  20. chown daemon $debuglog
  21.